docs: drop stale pre-PyPI two-step install instructions#25
Merged
Conversation
worldevals and inspect-robots have both been on PyPI since 0.3.x, but the catalog home page and CLAUDE.md still told users to install from git tags (two commands, pinned to inspect-robots v0.3.0). Replace both with 'pip install worldevals' and note in CLAUDE.md why direct git references must not come back: PyPI rejects wheels with direct-URL deps, which would break the release workflow at upload. Surfaced while reviewing #23/#24; closes out the stale-docs remainder of #2. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
scripts/gen_catalog.py: the catalog home page's CLI section told users to install from git tags in two steps ("Inspect Robots isn't on PyPI yet"). It is, and so is worldevals. Now justpip install worldevals.CLAUDE.md: the packaging gotcha still described the git-tag dependency era. Rewritten to state the PyPI dependency (inspect-robots>=0.3) and to warn agents never to reintroduce git direct references independencies, since PyPI rejects wheels with direct-URL deps and the release upload would fail.Why now
Surfaced while reviewing #23 and #24: the stale docs were the premise for re-introducing the direct-ref packaging. Closes out the docs remainder of #2 (closed as obsolete).
Verification
ruff check,ruff format --check, andpytest(15 passed) all green locally. The catalog page is generated at mkdocs build time viamkdocs-gen-files, so no committed artifacts to regenerate.🤖 Generated with Claude Code